home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Desktop Improver / IconAuthorDemo / Install < prev    next >
AmigaDOS Script File  |  1996-09-26  |  1KB  |  50 lines

  1. .key ""
  2. ;use only if booted from another (hard)disk !
  3.  
  4. failat 20
  5.  
  6. ;copy Pearl and Opal into FONTS:
  7. echo "Installing Fonts ..." NOLINE
  8.  
  9. if not exists FONTS:pearl.font
  10.   echo "Pearl ..." NOLINE
  11.   copy  fonts/Pearl#? FONTS: ALL QUIET
  12. endif
  13.  
  14. if not exists FONTS:opal.font
  15.   echo "Opal ..." NOLINE
  16.   copy  fonts/Opal#?  FONTS: ALL QUIET
  17. endif
  18. echo "ready"
  19.  
  20. echo "Installing Hyper ..." NOLINE
  21.  
  22. ;copy PowerPacker.library (© Nico Francois) into libs:
  23. if not exists LIBS:powerpacker.library
  24.   echo "PowerPacker.library ..." NOLINE
  25.   copy :hyper/libs/powerpacker.library LIBS: QUIET
  26. endif
  27.  
  28. if not exists HYPER:
  29.   makedir        SYS:Hyper
  30. ;*** add this to Ur (user-)startup-sequence: ***
  31.   assign  HYPER: SYS:Hyper
  32. endif
  33.  
  34. echo "Docs ..." NOLINE
  35. copy  :Hyper/#?.hyper   HYPER:        QUIET
  36.  
  37. echo "Hyper ..." NOLINE
  38. copy  :Hyper/Hyper      SYS:Utilities QUIET
  39. copy  :Hyper/Hyper.info SYS:Utilities QUIET
  40. echo "ready"
  41.  
  42. echo "Installing IconAuthor to SYS:Utilities ..." NOLINE
  43. copy  IconAuthor        SYS:Utilities QUIET
  44. copy  IconAuthor.info   SYS:Utilities QUIET
  45.  
  46. echo "ready"
  47. echo ""
  48. echo "                Have Fun !"
  49. echo ""
  50.